home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / misc / emu / msh-156.lha / devs / Mountlist < prev    next >
Text File  |  1992-08-01  |  2KB  |  100 lines

  1. /*
  2.  *  This Mountlist is just an example. Edit the locations of
  3.  *  messydisk.device and MessyFileSystem appropriately.
  4.  */
  5. /*
  6.  *  Messy file system on messy blocks:
  7.  */
  8. MSH:    FileSystem = L:MessyFileSystem /* or messydos:l/MessyFileSystem */
  9.     Device = messydisk.device      /* or messydos:devs/messydisk.device */
  10.     Unit = 1
  11.     Flags = 0
  12. /*
  13.  *  HighCyl is ignored, LowCyl, Surfaces, BlocksPerTrack
  14.  *  and Reserved are used once to find the bootblock.
  15.  *  Further parameters are found there.
  16.  */
  17.     LowCyl = 0 ; HighCyl = 79
  18.     Reserved = 0
  19.     Surfaces = 2
  20.     BlocksPerTrack = 9
  21. /*
  22.  *  Initially the disk cache will be 5 sectors.
  23.  */
  24.     Buffers = 5
  25. /*
  26.  *  Our type of filesystem is 'MSD\0'.
  27.  */
  28.     DosType = 0x4D534400
  29. /*
  30.  *  If Interleave is set to 65536, MSH: will wait for DFx:
  31.  *  (where x depends on the Unit parameter above) to recognize
  32.  *  inserted disks (or not).
  33.  */
  34.     Interleave = 65536
  35. /*
  36.  *  Use BufMemType = 3 [for MEMF_CHIP | MEMF_PUBLIC] if you
  37.  *  use MSH: on the trackdisk.device.
  38.  */
  39.     BufMemType = 1    /* messydisk needs no chip mem */
  40.     BootPri = 0
  41.     Stacksize = 3072
  42.     Priority = 9
  43.     GlobVec  = -1
  44. /*
  45.  *  Immediately load and start the MessyFileSystem
  46.  *  when mounted.
  47.  */
  48.     Mount = 1
  49. #
  50. MS2:    FileSystem = L:MessyFileSystem /* or messydos:l/MessyFileSystem */
  51.     Device = messydisk.device      /* or messydos:devs/messydisk.device */
  52.     Unit = 2
  53.     Flags = 0
  54.     LowCyl = 0 ; HighCyl = 79
  55.     Reserved = 0
  56.     Surfaces = 2
  57.     BlocksPerTrack = 9
  58.     Buffers = 5
  59.     BufMemType = 1    /* messydisk needs no chip mem */
  60.     BootPri = 0
  61.     Stacksize = 3072
  62.     Priority = 9
  63.     GlobVec  = -1
  64.     DosType = 0x4D534400
  65.     Interleave = 65536
  66.     Mount = 1
  67. #
  68. /* Weird example: Amiga Old filing system on messy blocks: */
  69. MF1:    Device = messydisk.device      /* or messydos:devs/messydisk.device */
  70.     Unit = 1
  71.     Flags = 0
  72.     Priority = 4
  73.     LowCyl = 0 ; HighCyl = 79
  74.     Reserved = 2
  75.     Surfaces = 2
  76.     BlocksPerTrack = 9
  77.     Buffers = 5
  78.     BufMemType = 1
  79.     BootPri = 0
  80. #
  81. /* Weird example: Messy file system on Amiga blocks: */
  82. DS1:    FileSystem = L:MessyFileSystem /* or messydos:l/MessyFileSystem */
  83.     Device = trackdisk.device
  84.     Unit = 1
  85.     Flags = 0
  86.     LowCyl = 0 ; HighCyl = 79
  87.     Reserved = 0
  88.     Surfaces = 2
  89.     BlocksPerTrack = 11
  90.     Buffers = 5
  91.     BufMemType = 3    /* trackdisk needs CHIP mem */
  92.     BootPri = 0
  93.     Stacksize = 3072
  94.     Priority = 9
  95.     GlobVec  = -1
  96.     DosType = 0x4D534400
  97.     Interleave = 65536
  98.     Mount = 1
  99. #
  100.